home *** CD-ROM | disk | FTP | other *** search
/ PC/CD Gamer UK 152 / PCG152DA0905 / PCG152DA0905.mdf / Main.dxr / Scripts_12_Conditional Rollover.ls < prev    next >
Encoding:
Text File  |  2005-07-15  |  356 b   |  19 lines

  1. property spriteNum
  2. global gCurrentSection
  3.  
  4. on mouseEnter me
  5.   if gCurrentSection = member(sprite(spriteNum).member).text then
  6.   else
  7.     cursor(280)
  8.     sprite(spriteNum - 10).blend = 100
  9.   end if
  10. end
  11.  
  12. on mouseLeave me
  13.   cursor(-1)
  14.   if gCurrentSection = member(sprite(spriteNum).member).text then
  15.   else
  16.     sprite(spriteNum - 10).blend = 50
  17.   end if
  18. end
  19.